home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 271_02 / cls.doc < prev    next >
Text File  |  1987-08-18  |  521b  |  39 lines

  1.  
  2.  
  3.  
  4.         NAME
  5.                 cls -- clear screen and home cursor
  6.  
  7.         SYNOPSIS
  8.                 void cls();
  9.  
  10.  
  11.         DESCRIPTION
  12.         This function clears the screen on page 0 and places the
  13.         cursor in the upper left-hand corner.  It is simply an
  14.         invocation of two other functions:
  15.              d_cls();
  16.              d_pos(0, 0, 0);
  17.  
  18.  
  19.  
  20.         EXAMPLE
  21.  
  22.              cls();
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.         This function is found in SMTCx.LIB for the Turbo-C Compiler
  39.